home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-06-19 | 377 b | 22 lines | [TEXT/MPS ] |
- #include <memory.h>
- #include <files.h>
-
- #include "bootblock.h"
- #include "specs.h"
- #include "makestartupfolder.h"
- #include "volumeloop.h"
-
- void main()
- {
- FSSpec volume;
-
- static Str31 volname= "\pStartup:";
- OSErr error= rootfsspec( volname, volume );
- if ( error != noErr )
- return;
-
- bootblock block;
- (void)block.install(volume);
- (void)makestartupfolder( volume );
- }
-